home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex62.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  161 b   |  9 lines

  1. Program Example62;
  2.  
  3. { Program to demonstrate the Sin function. }
  4.  
  5. begin
  6.   Writeln (Sin(Pi):0:1);   { Prints 0.0 }
  7.   Writeln (Sin(Pi/2):0:1); { Prints 1.0 }
  8. end.
  9.